home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / hwtypes.sql < prev    next >
Text File  |  2000-05-12  |  661b  |  18 lines

  1. /* RCSVER $Id: hwtypes.sql,v 1.2 1999-02-24 14:15:44-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        hwtypes.sql
  6. * Date:        02/17/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the hwtypes table. Thsi table defines the 
  9. *        hardware types (bill/coin/mag ticket).
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE hwtypes
  13. (
  14.     type    NUMBER(38),    /* Type of hardware */
  15.     descr    VARCHAR2(30),    /* Description of this type */
  16.     CONSTRAINT pk_hwtypes PRIMARY KEY (type)
  17. );
  18.